@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
}
body {
  --header_h: 6.25rem;
  --container: 14.8125rem;
  outline: none;
  font-weight: 500;
}
.p_top {
  position: absolute;
  top: -6.25rem;
}
.bg {
  background: #F6AD3C;
}
.c {
  color: #F6AD3C;
}
.phone_show_990,
.phone_show_767 {
  display: none;
}
.pagination {
  display: flex;
  padding-left: 0;
  margin: 1.25rem 0;
  border-radius: 0.25rem;
  justify-content: center;
}
.pagination > li {
  margin: 0 0.3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.pagination > li:hover {
  background: #F6AD3C;
  color: #fff;
  text-align: center;
}
.pagination > li:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3.125rem;
}
.pagination > li.active {
  background: #F6AD3C;
  color: #fff;
}
.pagination > li.active a {
  color: #fff;
}
.pagination > li.disabled:hover {
  color: #333;
  background: #FFF;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.gap15 {
  gap: 0.9375rem;
}
.gap20 {
  gap: 1.25rem;
}
.gap30 {
  gap: 1.875rem;
}
.gap40 {
  gap: 2.5rem;
}
.gap50 {
  gap: 3.125rem;
}
.foot-fot {
  background: #2D3333;
  display: none;
}
.foot-fot .foota2 {
  font-size: 1rem;
  color: #fff;
}
.foot-fot .foota2 a {
  font-size: 1rem;
  color: #fff;
}
/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
  resize: none;
  border: none;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
.search_more {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #444;
  position: relative;
  display: inline-block;
}
.search_more:hover {
  color: #F6AD3C;
}
.search_more:hover::before {
  background: #F6AD3C;
}
.search_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #E5E5E5;
}
.line1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.trans {
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.er-ul {
  position: absolute;
  width: 12rem;
  left: 50%;
  box-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.1);
  right: 0;
  top: 100%;
  z-index: 999;
  background: #fff;
  transition: 400ms ease-in-out;
  transform: scaleY(0) translateX(-50%);
  transform-origin: top center;
  opacity: 0;
  border-radius: 0 0 0.5rem 0.5rem;
}
.er-ul li {
  line-height: 2.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.er-ul li:hover a {
  color: #F6AD3C !important;
}
.er-ul li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
.er-ul li:nth-child(1) {
  padding-top: 0.625rem;
}
.er-ul li:last-child {
  padding-bottom: 0.625rem;
}
header .center > ul > li:hover .er-ul {
  transform: scaleY(1) translateX(-50%);
  opacity: 1;
}
header .nav_ul > li:hover .er-ul {
  transform: none;
  opacity: 1;
}
header .center > ul > li:hover .sec_box {
  transform: scaleY(1);
  opacity: 1;
}
header .nav_ul > li:hover .sec_box {
  transform: none;
  opacity: 1;
}
.sec_box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  border-top: 1px solid #e0e0e0;
  transition: 400ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
}
.sec_box .sec_ul {
  margin: 0 4rem;
  width: 13.125rem;
}
.sec_box .sec_ul .sec_li > a {
  color: #282828;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.5;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.sec_box .sec_ul .sec_li > a:hover {
  color: #F6AD3C;
}
.sec_box .sec_ul .sec_li .sec_ul2 {
  margin-top: 0.9375rem;
}
.sec_box .sec_ul .sec_li .sec_ul2 .sec_li2 {
  line-height: 2.1875rem;
}
.sec_box .sec_ul .sec_li .sec_ul2 .sec_li2 a {
  color: #888;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
  text-transform: capitalize;
}
.sec_box .sec_ul .sec_li .sec_ul2 .sec_li2:hover a {
  color: #F6AD3C;
}
.logo_phone img {
  width: 7.5rem;
}
.cf {
  color: #fff !important;
}
.c0 {
  color: #000 !important;
}
.phone_weibu {
  background: #0A0A0A;
  display: none;
}
.phone_weibu .mobMenu > li > a {
  font-size: 14px;
  padding: 10px 0;
  color: #fff;
}
.phone_weibu .mobMenu > li {
  border-bottom: #424245 1px solid;
}
.phone_weibu .mobMenu > li > .subDepth > li > a {
  font-size: 1em;
  color: #9a9797;
  line-height: 28px;
}
.phone_weibu .mobMenu > li > a::before {
  background-color: #fff;
}
.phone_weibu .mobMenu > li > a::after {
  background-color: #fff;
}
.phone_weibu .mobMenu > li > .subDepth {
  display: none;
}
body {
  --container: 14.8125rem;
}
@media (max-width: 1600px) {
  body {
    --container: 10rem;
  }
}
@media (max-width: 1440px) {
  body {
    --container: 8rem;
  }
}
@media (max-width: 1280px) {
  body {
    --container: 6rem;
  }
}
@media (max-width: 990px) {
  body {
    --container: 15px;
  }
}
.container {
  padding: 0 var(--container);
  width: 100%;
  max-width: 100%;
}
.container.container_l {
  padding: 0 0 0 var(--container);
}
.container.container_r {
  padding: 0 var(--container) 0 0;
}
/* 搜索 */
.search {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* background: #000; */
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
}
.search-box {
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25%;
}
.inp {
  width: 100%;
  height: 6.25rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.inp::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.bu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: rgba(255, 255, 255, 0.7);
  background: none;
  border: none;
  z-index: 9999;
}
.bu .iconfont {
  font-size: 3.125rem;
}
.search-con {
  position: absolute;
  right: 7%;
  top: 7%;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.search-con .iconfont {
  font-size: 2.125rem;
  font-weight: 100;
}
.ds {
  cursor: pointer;
}
.fenxiang .flex {
  justify-content: flex-start;
}
.fenxiang .social-share li {
  float: left;
  margin-left: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.375rem;
  border-radius: 50%;
  text-align: center;
}
.fenxiang .social-share li a {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  line-height: 2.375rem;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  font-size: 1rem;
}
.serbtn {
  background: #F6AD3C;
}
.searchbox {
  border-color: #F6AD3C;
}
@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
  .pc_show_990 {
    display: none;
  }
  .phone_show_990 {
    display: block;
  }
}
.m-hidden {
  display: none;
}
@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}
.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
/*手机底部*/
@media (max-width: 990px) {
  .foot1-m {
    display: block;
  }
}
/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
  background: #000;
}
.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}
.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 34px;
}
.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}
.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  width: 120px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span,
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.m-bm-head .phone_lanu {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 65px;
}
.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: #050505;
}
.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(40vh);
  height: -moz-calc(40vh);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}
.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px;
  margin-left: 63%;
  position: relative;
  z-index: 9;
}
.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}
.m-bm-nav .aniut.aniut_son {
  height: 35px;
  line-height: 35px;
}
.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  padding: 0 4%;
  font-weight: 600;
}
.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-weight: 500;
}
.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px 10px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}
.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}
.m-bm-nav > li .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}
.m-bm-nav > li .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}
.m-bm-head.white {
  background: #fff;
}
.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}
.m-bm-head.white .m-bm-menu {
  background: #fff;
}
.m-bm-head.white .m-bm-nav > li,
.m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}
.m-bm-head.white .m-bm-nav > li > a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav > li .sec a,
.m-bm-head.white .mrhgxt {
  color: #000;
}
.ajhhsd {
  padding: 1em 0;
  color: #FFF;
  text-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  font-weight: 700;
}
.ajhhsd a {
  color: #FFF;
  text-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  font-weight: 700;
}
.ajhhsd a:hover {
  color: #F6AD3C;
}
.ajhhsd span {
  padding: 0 0.3em;
}
.ajhhsd span:last-child {
  display: none;
}
.xw_ny_banner {
  background: #263452;
  -o-background-size: cover;
  background-size: cover;
  padding: 13.5rem 0 7.25rem;
}
.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em;
}
@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}
@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}
.list_website {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.ssy-sskaa {
  margin-bottom: 2rem;
}
.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}
.ssy-sskaa .searchsa form input {
  width: 70%;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 4rem;
  background: transparent;
  color: #999;
}
.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}
.ssy-sskaa .searchsa form button i {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 4rem;
  color: #333;
}
@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
  .pc_show_767 {
    display: none;
  }
  .phone_show_767 {
    display: block;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}
@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}
.sssjga {
  color: #333;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.ss-list li + li {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 1rem;
  }
}
.ss-list li div.img {
  width: 25%;
}
.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}
.ss-list li .xw-nycont {
  width: 72%;
}
.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35em;
  overflow: hidden;
  margin-bottom: 0.2em;
}
.ss-list li .xw-nycont.w100 {
  width: 100%;
}
@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}
@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}
.ss-list li .xw-nycont span {
  color: #F6AD3C;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
}
.ss-list li .xw-nycont .datea {
  color: #999999;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5em;
}
.ss-list li .xw-nycont .p {
  color: #999999;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 0.5em;
}
.ss-list li .xw-nycont a.more-msl {
  margin-top: 1em;
}
@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}
/* end */
.list_website ul li {
  padding: 1.875rem 0;
  border-bottom: 1px solid #ddd;
}
.list_website ul li:first-child {
  padding-top: 0;
}
.list_website ul li .top {
  font-size: 1.375rem;
  line-height: 1.875rem;
  margin-bottom: 0.625rem;
  font-weight: 600;
}
.list_website ul li .bot {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #717171;
  margin-right: 1.25rem;
}
@media (max-width: 1600px) {
  body,
  html {
    font-size: calc(100vw / 110);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1440px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 95);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}
@media (max-width: 990px) {
  body,
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 var(--container);
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 var(--container);
  }
}
.phone {
  line-height: 60px;
  padding: 0 30px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background: #000;
}
.phone.white {
  background: #fff;
}
.phone.white .left img {
  filter: brightness(0);
}
@media (max-width: 767px) {
  .phone {
    padding: 0 15px;
  }
}
.phone > .clearfix {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone.noLanuage .center {
  width: 60%;
  text-align: left;
  order: 1;
}
.phone.noLanuage .left {
  width: 40%;
  text-align: right;
  order: 2;
}
.phone.noLanuage .right {
  display: none;
}
.phone .left {
  width: 10%;
  text-align: right;
}
.phone .left img {
  height: 22px;
}
.phone .right {
  width: 10%;
  text-align: left;
}
.phone .right span {
  width: 1px;
  height: 10px;
  background: #1D1D1F;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 1px;
}
.phone .right a {
  font-weight: bold;
  font-size: 12px;
  color: #A7A7A8;
}
.phone .right a.c {
  color: #1D1D1F;
}
.phone .center {
  width: 80%;
  margin: 0 auto;
}
.phone .center img {
  width: 130px;
}
.sjj_nav {
  position: fixed;
  z-index: 9999;
  background: #1D1D1F;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 40px;
  top: 0;
  left: -100%;
  overflow: auto;
  overflow-x: hidden;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.nav_show {
  left: 0;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav > ul > li:first-child {
  overflow: hidden;
  border-top: 0;
}
.sjj_nav > ul > li:first-child > a {
  width: 60%;
}
.sjj_nav > ul > li:first-child .language {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.sjj_nav > ul > li:first-child .language a {
  width: 25%;
  float: left;
  border-left: 1px #ddd solid;
  text-align: center;
  color: #999;
  display: inline-block;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.sjj_nav > ul > li:first-child .language a.active {
  background: #F6AD3C;
  color: #fff !important;
}
.sjj_nav > ul > li:first-child .language a:last-child {
  border-right: 1px #ddd solid;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  transform: rotate(0deg);
}
.sjj_nav ul li {
  position: relative;
  line-height: 40px;
  font-size: 14px;
}
.sjj_nav > ul > li:last-child {
  border-bottom: 1px #ddd solid;
}
.sjj_nav ul li ul {
  display: none;
}
.sjj_nav ul li i svg {
  width: 20px;
  height: 20px;
  fill: #555;
}
.sjj_nav ul li .sjj_nav_i_se svg {
  fill: #F6AD3C;
}
.sjj_nav ul li ul li > ul {
  margin-left: 10px;
}
.sjj_nav .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #1D1D1F;
}
.sjj_nav .top .ta img {
  height: 40px;
  filter: brightness(0) invert(0.8);
  width: 120px;
}
.sjj_nav .top .fr img {
  height: 22px;
}
.sjj_nav .bot {
  padding: 25px 40px 0;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow: scroll;
}
.sjj_nav .bot > li:first-child {
  margin-bottom: 34px;
}
.sjj_nav .bot > li:first-child input {
  padding-left: 28px;
  width: 100%;
  font-size: 14px;
  color: #a7a7a7;
  line-height: 35px;
  border: 1px solid #A7A7A8;
  background: transparent;
}
.sjj_nav .bot > li:first-child button {
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 100%;
  border: none;
}
.sjj_nav .bot > li:first-child button .iconfont {
  position: static;
  text-align: center;
  color: #a7a7a7;
  font-size: 16px;
  padding: 0;
  border: none;
}
.sjj_nav .bot > li {
  font-size: 18px;
  line-height: 20px;
  color: #a7a7a7;
  border-bottom: none !important;
  margin-bottom: 30px;
}
.sjj_nav .bot > li > ul {
  padding-left: 1.25rem;
}
.sjj_nav .bot > li > div > a {
  width: calc(100% - 3.75rem);
}
.sjj_nav .bot > li > a {
  display: inline-block;
}
.sjj_nav .bot > li img {
  height: 30px;
}
.sjj_nav .bot > li .list .left {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.9px;
  color: #EBEBEC;
  float: left;
}
.sjj_nav .bot > li .list .left a {
  color: #EBEBEC;
}
.sjj_nav .bot > li .list .right.w100 {
  width: 100%;
  float: none;
  padding-bottom: 20px;
}
.sjj_nav .bot > li .list .right {
  width: 80%;
  float: right;
  font-size: 14px;
  color: #EBEBEC;
  line-height: 20px;
}
.sjj_nav .bot > li .list .right a {
  color: #EBEBEC;
  margin-bottom: 18px;
}
.sjj_nav .bot > li ul {
  margin-top: 20px;
}
.sjj_nav .bot > li > div {
  color: #a7a7a7;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.875rem;
  display: flex;
  align-items: center;
}
.sjj_nav .bot > li > div > a {
  color: #a7a7a7;
}
.sjj_nav .bot > li > div .iconfont {
  width: 3.75rem;
  text-align: right;
  display: block;
  font-size: 1rem;
}
.sjj_nav .bot > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  background: #a7a7a7;
}
.sjj_nav .bot > li:hover > a::before,
.sjj_nav .bot > li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.sjj_nav .top .container {
  padding: 0 40px;
}
@media (max-width: 767px) {
  .sjj_nav .top .container {
    padding: 0 15px;
  }
}
.rightfix {
  bottom: 10%;
  top: auto;
  transform: translateY(0);
  right: 1.25rem;
  width: auto;
  box-shadow: none;
  border: none;
  background: transparent;
}
.rightfix li {
  cursor: pointer;
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 50%;
  line-height: 3.375rem;
  padding: 0;
  border: none;
  background: transparent;
  margin-bottom: 1.25rem;
  position: relative;
  border: none !important;
}
.rightfix li .iconfont {
  font-size: 1.375rem;
  display: block;
  color: #fff;
  border-radius: 50%;
  background: #004098;
}
.rightfix li:hover .iconfont {
  background: #F6AD3C;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.rightfix li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: #DEDDDD;
  width: 1.1875rem;
}
.rightfix li:last-child::before {
  display: none;
}
.rightfix li::before {
  display: none;
}
.fixright_li_last {
  display: none;
}
.right_div.img {
  min-width: 7.5rem !important;
}
.right_div.img img {
  height: 7.5rem;
  object-fit: contain;
}
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes sticky {
  0% {
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-o-keyframes sticky {
  0% {
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
header {
  position: fixed;
  line-height: 6.25rem;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header:hover,
header.active,
header.active2 {
  background: #fff;
}
header:hover .center ul li a,
header.active .center ul li a,
header.active2 .center ul li a {
  color: #000;
}
header:hover .center ul li a::before,
header.active .center ul li a::before,
header.active2 .center ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #F6AD3C;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header:hover .center ul li.active > a,
header.active .center ul li.active > a,
header.active2 .center ul li.active > a {
  color: #F6AD3C;
}
header:hover .center ul li.active > a::before,
header.active .center ul li.active > a::before,
header.active2 .center ul li.active > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header:hover .lanuage a,
header.active .lanuage a,
header.active2 .lanuage a {
  color: #000;
}
header:hover .ds1 .iconfont,
header.active .ds1 .iconfont,
header.active2 .ds1 .iconfont {
  color: #000;
}
header:hover .ds1:hover,
header.active .ds1:hover,
header.active2 .ds1:hover {
  cursor: pointer;
}
header:hover .logo img,
header.active .logo img,
header.active2 .logo img {
  filter: unset;
}
header.active {
  animation: sticky 0.65s;
}
@media (max-width: 990px) {
  header {
    display: none;
  }
}
header .logo img {
  height: 4rem;
  filter: brightness(0) invert(1);
}
header .ds1 {
  margin-left: 2.8125rem;
}
header .ds1 .iconfont {
  font-size: 1.5rem;
  display: block;
  font-weight: 500;
  color: #fff;
}
header .btn_t {
  height: 6.25rem;
  display: flex;
  align-items: center;
  margin-left: 0.9375rem;
}
header .btn_t a {
  width: 8.3125rem;
  height: 3.3125rem;
  border-radius: 3.75rem;
  background: #004098;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
header .btn_t a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #F6AD3C;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 0.625rem;
}
header .lanuage {
  margin-left: 2rem;
  display: block;
}
header .lanuage a {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  display: flex;
  align-items: center;
}
header .lanuage a .iconfont {
  font-size: 0.625rem;
  padding-left: 0.75rem;
  font-weight: 600;
}
header .lanuage a.c {
  color: #F6AD3C;
}
header .center > ul > li {
  float: left;
  padding: 0 2.5rem;
}
header .center > ul > li > a {
  font-size: 1.125rem;
  color: #fff;
  position: relative;
}
header .center > ul > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li:hover > a {
  color: #F6AD3C;
}
header .center > ul > li:hover > a::before {
  width: 100%;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .center > ul > li.active > a {
  color: #F6AD3C;
}
header .center > ul > li.active > a::before {
  width: 100%;
  background-color: #F6AD3C;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .container {
  padding: 0 6.25rem;
}
footer {
  background: #263452;
}
footer .foot_top {
  padding-top: 5.625rem;
  padding-bottom: 3.125rem;
}
footer .foot_top .left {
  width: 20%;
}
footer .foot_top .left .ewm_box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .foot_top .left .ewm_box .img {
  width: 9.125rem;
  padding: 0.3125rem;
  background-color: #fff;
}
footer .foot_top .left .ewm_box .text {
  margin-top: 0.5625rem;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
footer .foot_top .right {
  width: 80%;
}
footer .foot_top .right .footnav {
  display: flex;
  justify-content: space-between;
}
footer .foot_top .right .footnav .tt {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}
footer .foot_top .right .footnav .subfootnav {
  margin-top: 1.1875rem;
}
footer .foot_top .right .footnav .subfootnav .subfootli > a {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
}
footer .foot_top .right .footnav .subfootnav .subfootli > a:hover {
  font-weight: 600;
}
footer .foot_top .right .footnav .foot-contact {
  margin-top: 1.1875rem;
}
footer .foot_top .right .footnav .foot-contact li {
  display: flex;
}
footer .foot_top .right .footnav .foot-contact .icon i {
  font-size: 1.5rem;
  color: #FFFFFF;
}
footer .foot_top .right .footnav .foot-contact .text {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.1875rem;
  padding-left: 0.625rem;
  flex: 1;
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  padding: 1.375rem 0 1.4375rem;
}
footer .copyright a {
  color: #FFFFFF;
}
footer .copyright p {
  color: #FFFFFF;
}
footer .copyright .left span:nth-last-child(1) {
  display: none;
}
@-webkit-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -moz-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes banscaleDraw {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    /*放大1.1倍*/
  }
  50% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.banner .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner .hover .p1 {
  color: #FFF;
  font-size: 3.125rem;
  line-height: 1.5;
  font-weight: 700;
}
.banner .hover .p2 {
  margin-top: 1.25rem;
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
.banner .hover .p3 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.banner .hover .p3 .pi {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner .hover .p3 .pi .icon {
  width: 2.5rem;
}
.banner .hover .p3 .pi .t {
  font-size: 1rem;
  color: #fff;
  margin-top: 0.625rem;
}
.banner .hover2 {
  position: absolute;
  right: 10%;
  bottom: 3.125rem;
}
.banner .swiper-slide.swiper-slide-active .img img {
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}
.banner .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 3.125rem;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.banner .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.625rem;
  border: 1px solid #fff;
  opacity: unset;
  background: unset;
}
.banner .scroll {
  position: absolute;
  left: 50%;
  bottom: 3.125rem;
  transform: translateX(-50%);
  z-index: 9;
  animation: xiangxia 2s infinite;
}
@keyframes xiangxia {
  0% {
    transform: translateY(-0.625rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.625rem);
  }
}
.swiper-pagination {
  display: flex;
}
.swiper-button-next,
.swiper-button-prev {
  width: 3.375rem;
  height: 3.375rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b3b3b3;
  line-height: 3.375rem;
  text-align: center;
}
.swiper-button-next i,
.swiper-button-prev i {
  color: #000;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: -6.25rem;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: -6.25rem;
}
.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 1;
  background: unset;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F6AD3C;
  border: unset;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.neibanner {
  position: relative;
  margin-top: 6.25rem;
}
.neibanner .neibanner_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.neibanner .neibanner_txt h3 {
  color: #FFF;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  font-size: 2.8125rem;
  font-weight: 700;
}
.neibanner .neibanner_txt p {
  color: #fff;
}
.login-div {
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  bottom: 0;
  display: none;
  right: 0;
}
.login-div .tsxx {
  font-size: 0.875rem;
  color: red;
  margin-top: 0.25rem;
  line-height: 1.5em;
}
.login-div .tc-gong {
  width: 90%;
  max-width: 33.8125rem;
  background: #FFF;
}
.login-div .tc-gong .top {
  position: relative;
  width: 100%;
  height: 6.25rem;
}
.login-div .tc-gong .top .close1 {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  cursor: pointer;
}
.login-div .tc-gong .top .close1 i {
  font-size: 1.5rem;
  color: #333;
}
.login-div .tc-gong .top .ligat {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/jiaobiao.png);
  width: 6.25rem;
  height: 100%;
  text-align: right;
}
.login-div .tc-gong .top .ligat a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 5rem;
  padding: 0.5rem 0;
  position: relative;
  font-weight: 600;
  padding-right: 0.625rem;
}
.login-div .tc-gong .content {
  padding: 0 3.125rem 3.125rem;
}
.login-div .tc-gong .content .title {
  color: #F6AD3C;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  position: relative;
  padding-bottom: 0.9375rem;
  margin-bottom: 3.125rem;
}
.login-div .tc-gong .content .title::before {
  content: '';
  display: block;
  position: absolute;
  width: 2.5rem;
  height: 0.1875rem;
  background-color: #F6AD3C;
  bottom: 0;
}
.login-div .tc-gong .content .lgin-box {
  text-align: center;
  padding: 1.5rem 0 0.2rem;
}
.login-div .tc-gong .content .lgin-box a.login {
  display: block;
  font-size: 0;
  width: 212px/541px * 100%;
  margin: 0 auto;
}
.login-div .tc-gong .content .lgin-box a.login img {
  width: 100%;
}
.login-div .tc-gong .content .lgin-box p {
  color: #A4A4A4;
  font-size: 1.5rem;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .lgin-box p {
    font-size: 1.25rem;
  }
}
.login-div .tc-gong .content .msg-svt {
  padding: 0 66px/541px * 100%;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .msg-svt {
    padding: 0 7%;
  }
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk {
  border-bottom: 1px solid #EBEBEB;
  overflow: hidden;
  margin-top: 1.25rem;
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk .wejxa1 {
  width: 5.625rem;
  text-align: left;
  line-height: 3.125rem;
  padding-left: 0.45rem;
  font-size: 1rem;
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk input {
  flex: 1;
  color: #000;
  font-size: 1rem;
  line-height: 3.125rem;
  font-weight: 500;
  text-indent: 0.75em;
}
.login-div .tc-gong .content .msg-svt .inp-box .inpsk:has(input:focus) {
  border-color: #F6AD3C;
}
.login-div .tc-gong .content .msg-svt .checkbox {
  margin-top: 0.625rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.875rem;
  /* 214.286% */
}
.login-div .tc-gong .content .msg-svt .checkbox a {
  color: rgba(0, 0, 0, 0.5);
}
.login-div .tc-gong .content .msg-svt a.wjmm {
  display: block;
  text-align: center;
  color: #848484;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .msg-svt a.wjmm {
    padding: 0.75rem 0;
  }
}
.login-div .tc-gong .content .msg-svt .inp-boxta {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #EBEBEB;
  margin-top: 1.25rem;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .p1 {
  width: 5.625rem;
  text-align: left;
  line-height: 3.125rem;
  padding-left: 0.45rem;
  font-size: 1rem;
}
.login-div .tc-gong .content .msg-svt .inp-boxta input {
  flex: 1;
  color: #000;
  font-size: 1rem;
  line-height: 3rem;
  font-weight: 500;
  text-indent: 1em;
}
.login-div .tc-gong .content .msg-svt .inp-boxta input:focus {
  border-color: #F6AD3C;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box {
  overflow: hidden;
  display: flex;
  flex: 1;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .inps {
  width: 65%;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .inps input {
  border: none;
  border-radius: inherit;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .code-btn {
  width: 35%;
  text-align: right;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box .code-btn button {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  /* 187.5% */
  border: unset;
  border-left: 1px solid #EBEBEB;
  width: 100%;
  text-transform: capitalize;
  background-color: unset;
}
.login-div .tc-gong .content .msg-svt .inp-boxta .code-box:has(input:focus) {
  border-color: #F6AD3C;
}
.login-div .tc-gong .content .msg-svt2 {
  padding: 1rem 66px/541px * 100% 2rem;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .msg-svt2 {
    padding: 0.75rem 7% 1.5rem;
  }
}
.login-div .tc-gong .content .tj-btnys button {
  border-radius: 1.875rem;
  background: #F6AD3C;
  padding: 0.75rem 0;
  width: 100%;
  border: unset;
  color: #fff;
  font-size: 1.125rem;
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .login-div .tc-gong .content .tj-btnys button {
    font-size: 1.35rem;
    line-height: 4rem;
  }
}
.login-div .tc-gong .content .tj-btnys button:hover {
  background: linear-gradient(76deg, #23d5d9 -20.93%, #00acb0 126.57%);
}
.login-div .tc-gong .content .wjmm_box {
  margin-top: 1.875rem;
}
.login-div .tc-gong .content .wjmm_box a {
  color: #F6AD3C;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-decoration-line: underline;
}
.news_box .swipernews {
  overflow: hidden;
  padding-bottom: 5rem;
}
.news_box .swipernews .news_new_box {
  background-color: #fff;
  overflow: hidden;
  display: flex;
}
.news_box .swipernews .news_new_box .left {
  width: 47%;
}
.news_box .swipernews .news_new_box .left .img {
  height: 100%;
}
.news_box .swipernews .news_new_box .left .img .over {
  height: 100%;
}
.news_box .swipernews .news_new_box .left .img .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news_box .swipernews .news_new_box .right {
  width: 53%;
}
.news_box .swipernews .news_new_box .right .newstxt {
  padding: 3.875rem 2.125rem 3.625rem 3.75rem;
}
.news_box .swipernews .news_new_box .right .newstxt h3 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  font-weight: 700;
}
.news_box .swipernews .news_new_box .right .newstxt .p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.75rem;
}
.news_box .swipernews .news_new_box .right .newstxt .p1 {
  color: #F6AD3C;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.875rem;
}
.yyhy_content {
  margin-bottom: 7.5rem;
}
.yyhy_content .yyhy_con {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.yyhy_content .yyhy_con .yyhy_item .over {
  height: 17.5rem;
}
.yyhy_content .yyhy_con .yyhy_item .over img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.yyhy_content .yyhy_con .yyhy_item .text {
  padding-top: 1.875rem;
}
.yyhy_content .yyhy_con .yyhy_item .text h3 {
  color: #3B3B3B;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.yyhy_content .yyhy_con .yyhy_item .text .time {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.yyhy_content .yyhy_con .yyhy_item:hover .text h3 {
  color: #F6AD3C;
}
.yyhy_content .yyhy_con .yyhy_item:hover .text p {
  color: #F6AD3C;
}
.search-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  top: 0;
  left: 0;
  display: none;
}
.search-box {
  display: none;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}
.search-box input[type="text"] {
  padding: 1.5625rem;
  border: unset;
  border-radius: 1.25rem;
  width: 100%;
  outline: none;
}
.search-box button {
  background: unset;
  color: #999;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.875rem;
  top: 1.4375rem;
}
.search-box button i {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}
.all_title h3 {
  color: #3B3B3B;
  font-size: 2.1875rem;
  font-weight: 700;
}
.all_title p {
  color: #393939;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
}
.all_title p span {
  color: #004098;
}
.all_title p i {
  position: absolute;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  margin-left: 0.4375rem;
}
.all_title p i::before {
  content: '';
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #F6AD3C;
  position: absolute;
  bottom: 0;
}
.all_title p i::after {
  content: '';
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #F6AD3C;
  position: absolute;
  top: 0;
  left: 1.125rem;
}
.list_contact_one {
  padding-top: 7.5rem;
  padding-bottom: 6.75rem;
}
.list_contact_one .desc {
  color: #A7A7A7;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-transform: capitalize;
}
.list_contact_one .tel_box {
  width: 82%;
  margin: 3.125rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.list_contact_one .tel_box .tel {
  color: #F6AD3C;
  text-align: center;
  font-family: Montserrat;
  font-size: 3.75rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}
.list_contact_one .cont_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_contact_one .cont_box p {
  color: #3A3A3A;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.list_contact_one .cont_box p span,
.list_contact_one .cont_box p a {
  color: #7C7C7C;
  font-weight: 400;
}
.list_contact_one .cont_box p:not(:nth-last-child(1)) {
  margin-right: 3.75rem;
}
.list_contact_one .tit {
  color: #000;
  font-size: 1.5rem;
  line-height: 1.875rem;
  text-transform: capitalize;
}
.list_contact_one .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9375rem 2.4375rem;
}
.list_contact_one .grid_box .grid_item {
  border-radius: 0.3125rem;
  border: 1px solid #DEDEDE;
  background: #FFF;
  padding: 2.0625rem 2.1875rem 1.75rem;
}
.list_contact_one .grid_box .grid_item .title {
  color: #3A3A3A;
  font-size: 1.125rem;
  line-height: 1.875rem;
  padding-bottom: 1.1875rem;
  border-bottom: 1px solid #DEDEDE;
}
.list_contact_one .grid_box .grid_item .con {
  padding-top: 1.5rem;
  color: #7C7C7C;
  font-size: 1rem;
  line-height: 2.1875rem;
}
.list_contact_two {
  padding-top: 6.875rem;
  padding-bottom: 5.4375rem;
  background: #F5FAFF;
}
.list_contact_two .content .msg-a1 {
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 3.8125rem;
}
.list_contact_two .content .msg-a1 .inpt p {
  color: #252525;
  font-size: 1rem;
  padding-bottom: 0.875rem;
}
.list_contact_two .content .msg-a1 .inpt p span {
  color: #F00;
  font-size: 1rem;
  margin-left: 0.3125rem;
}
.list_contact_two .content .msg-a1 .inpt input {
  width: 100%;
  height: 3.4375rem;
  border-radius: 0.1875rem;
  border-radius: 5px;
  border: 1px solid #DEDEDE;
  background: #FFF;
  padding: 0 1.625rem;
}
.list_contact_two .content .msg-a2 {
  margin-top: 1.125rem;
}
.list_contact_two .content .msg-a2 p {
  color: #252525;
  font-size: 1rem;
  padding-bottom: 0.875rem;
}
.list_contact_two .content .msg-a2 p span {
  color: #F00;
  font-size: 1.125rem;
  margin-left: 0.3125rem;
}
.list_contact_two .content .msg-a2 textarea {
  width: 100%;
  border-radius: 0.3125rem;
  border: 1px solid #DEDEDE;
  background: #FFF;
  padding: 1.625rem;
}
.list_contact_two .content .div_aghgha {
  text-align: right;
}
.list_contact_two .content .div_aghgha button {
  width: 11.5rem;
  height: 4.0625rem;
  border: none;
  border-radius: 0.3125rem;
  background: #004098;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  border: 2px solid transparent;
  color: #fff;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_contact_two .content .div_aghgha button:hover {
  border: 2px solid #F6AD3C;
  background: unset;
  color: #F6AD3C;
}
.list_case {
  padding-top: 7.5rem;
}
.list_case.pt50 {
  padding-top: 3.125rem;
}
.list_case .tabul {
  display: flex;
  align-items: center;
}
.list_case .tabul .tabli {
  margin: 0 0.6875rem;
}
.list_case .tabul .tabli a {
  width: 9.375rem;
  height: 4.0625rem;
  border-radius: 0.1875rem;
  background: #F3F3F3;
  color: #585858;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 4.0625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  /* 218.75% */
}
.list_case .tabul .tabli.active a,
.list_case .tabul .tabli:hover a {
  background-color: #F6AD3C;
  color: #fff;
}
.list_case .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4375rem;
}
.list_case .content .grid_box .grid_item {
  border: 1px solid #D7D7D7;
  background: #FFF;
  padding: 1.875rem;
}
.list_case .content .grid_box .grid_item .over {
  height: 15.625rem;
}
.list_case .content .grid_box .grid_item .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_case .content .grid_box .grid_item .text {
  color: #3B3B3B;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.1875rem;
  text-align: center;
  padding-top: 0.625rem;
}
.list_about_one {
  padding-top: 7.5rem;
  padding-bottom: 6.5625rem;
}
.list_about_one .content::after {
  content: "";
  display: table;
  clear: both;
}
.list_about_one .content .left .desc {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  text-transform: capitalize;
  text-align: justify;
}
.list_about_one .content .left .desc h3 {
  margin-top: 0.625rem;
  color: #3A3A3A;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-transform: capitalize;
}
.list_about_one .content .right {
  float: right;
  width: 52%;
  padding-left: 3rem;
}
.list_about_one .content .right .over {
  shape-outside: margin-box;
}
.list_about_one .content .right .over img {
  max-width: 100%;
  height: auto;
}
.list_about_two {
  padding-top: 6.875rem;
  background: #F5FAFF;
}
.list_about_two .content {
  position: relative;
}
.list_about_two .content::before {
  content: '';
  display: block;
  width: 100%;
  height: 3.75rem;
  background-image: url(../img/history.png);
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.list_about_two .content .swiper-button-next,
.list_about_two .content .swiper-button-prev {
  background: #F6AD3C;
  border: none;
  margin-top: 0;
  transform: translateY(-50%);
}
.list_about_two .content .swiper-button-next i,
.list_about_two .content .swiper-button-prev i {
  color: #fff;
  font-size: 1.25rem;
}
.list_about_two .content .swiper_history {
  position: relative;
  overflow: hidden;
}
.list_about_two .content .swiper_history .swiper-slide-active .history_box .cont {
  order: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.875rem;
  padding-bottom: 2.5rem;
  margin-top: 0;
}
.list_about_two .content .swiper_history .swiper-slide-active .history_box .year {
  margin-top: 1.875rem;
  padding-top: 5rem;
  margin-bottom: 0;
  order: 2;
  height: 15rem;
}
.list_about_two .content .swiper_history .swiper-slide-active .history_box .year i {
  bottom: unset;
  top: 0;
  height: 4.375rem;
  background: #4778BC;
}
.list_about_two .content .swiper_history .swiper-slide-active .history_box .year .yuan {
  border-color: #4778BC;
  color: #4778BC;
  margin: -0.1875rem auto;
}
.list_about_two .content .swiper_history .swiper-slide-active .history_box .year .yuan::before {
  clip-path: circle(40% at right 10% bottom 10%);
  transform: rotate(-135deg);
  border-color: #4778BC;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide .history_box .cont {
  order: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.875rem;
  padding-bottom: 2.5rem;
  margin-top: 0;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide .history_box .year {
  margin-top: 1.875rem;
  padding-top: 5rem;
  margin-bottom: 0;
  order: 2;
  height: 15rem;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide .history_box .year i {
  bottom: unset;
  top: 0;
  height: 4.375rem;
  background: #4778BC;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide .history_box .year .yuan {
  border-color: #4778BC;
  color: #4778BC;
  margin: -0.1875rem auto;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide .history_box .year .yuan::before {
  clip-path: circle(40% at right 10% bottom 10%);
  transform: rotate(-135deg);
  border-color: #4778BC;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide .history_box .cont {
  order: 1;
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.875rem;
  padding-bottom: 2.5rem;
  margin-top: 0;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide .history_box .year {
  margin-top: 1.875rem;
  padding-top: 5rem;
  margin-bottom: 0;
  order: 2;
  height: 15rem;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide .history_box .year i {
  bottom: unset;
  top: 0;
  height: 4.375rem;
  background: #4778BC;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide .history_box .year .yuan {
  border-color: #4778BC;
  color: #4778BC;
  margin: -0.1875rem auto;
}
.list_about_two .content .swiper_history .swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide .history_box .year .yuan::before {
  clip-path: circle(40% at right 10% bottom 10%);
  transform: rotate(-135deg);
  border-color: #4778BC;
}
.list_about_two .content .swiper_history .history_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.list_about_two .content .swiper_history .history_box .svg svg {
  width: 100%;
}
.list_about_two .content .swiper_history .history_box .year {
  height: 15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 4.375rem;
  position: relative;
}
.list_about_two .content .swiper_history .history_box .year i {
  display: inline-block;
  width: 1px;
  height: 4.6875rem;
  background-color: #004098;
  position: absolute;
  bottom: 0;
  left: 50%;
}
.list_about_two .content .swiper_history .history_box .year .yuan {
  width: 8.125rem;
  height: 8.125rem;
  border-radius: 8.125rem;
  border: 10px solid #004098;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004098;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin: 1.7rem auto;
  position: relative;
}
.list_about_two .content .swiper_history .history_box .year .yuan::before {
  content: '';
  display: block;
  width: calc(100% + 1.875rem);
  height: calc(100% + 1.875rem);
  border-radius: 50%;
  border: 1px solid #004098;
  position: absolute;
  top: -0.9375rem;
  left: -0.9375rem;
  clip-path: circle(40% at right 10% bottom 10%);
  transform: rotate(45deg);
}
.list_about_two .content .swiper_history .history_box .cont {
  color: #7C7C7C;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  height: 15rem;
  margin-top: 1.875rem;
  padding-top: 2.1875rem;
}
.list_about_three {
  padding-top: 6.875rem;
  mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.list_about_three .content .swiper_cert {
  position: relative;
  margin: 0 -1rem;
  padding-bottom: 4.0625rem;
}
.list_about_three .content .swiper_cert .swiper-slide {
  padding: 0 1rem;
}
.list_about_three .content .swiper_cert .swiper-slide .cert_box {
  border: 1px solid #D9D9D9;
  background: #FFF;
  padding: 1.875rem 1.75rem;
}
.list_about_three .content .swiper_cert .swiper-scrollbar {
  width: 88%;
  left: 0;
  height: 1px;
}
.list_about_three .content .swiper_cert .swiper-button-prev,
.list_about_three .content .swiper_cert .swiper-container-rtl .swiper-button-next {
  top: unset;
  bottom: -1.5625rem;
  left: unset;
  right: 5%;
}
.list_about_three .content .swiper_cert .swiper-button-next,
.list_about_three .content .swiper_cert .swiper-container-rtl .swiper-button-prev {
  top: unset;
  bottom: -1.5625rem;
  right: 0;
  left: unset;
}
.list_about_three .content .swiper_cert .swiper-button-next,
.list_about_three .content .swiper_cert .swiper-button-prev {
  background-color: #F6AD3C;
  border: unset;
}
.list_about_three .content .swiper_cert .swiper-button-next i,
.list_about_three .content .swiper_cert .swiper-button-prev i {
  color: #fff;
  font-size: 1.25rem;
}
.list_about_three .content .swiper_cert .swiper-button-next.swiper-button-disabled,
.list_about_three .content .swiper_cert .swiper-button-prev.swiper-button-disabled {
  background-color: #fff;
  border: 1px solid #b3b3b3;
}
.list_about_three .content .swiper_cert .swiper-button-next.swiper-button-disabled i,
.list_about_three .content .swiper_cert .swiper-button-prev.swiper-button-disabled i {
  color: #000;
}
.list_product {
  position: relative;
}
.list_product .list_product_box {
  display: flex;
  justify-content: space-between;
}
.list_product .list_product_box .left {
  position: sticky;
  top: 0;
  height: 100%;
  padding-top: 6.25rem;
  padding-left: 6.25rem;
  width: 21.875rem;
  background: linear-gradient(180deg, #EDF6FF 0%, #FFF 100%);
}
.list_product .list_product_box .left .le_menu .le_menu_item > a {
  color: #3C3C3C;
  font-size: 1.25rem;
  text-transform: capitalize;
  padding: 1.125rem 1.5625rem 1.125rem 0;
  border-bottom: 1px solid rgba(0, 64, 152, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list_product .list_product_box .left .le_menu .le_menu_item > a i {
  font-size: 1.5rem;
  color: #333333;
}
.list_product .list_product_box .left .le_menu .le_menu_item > a i.icon-jiahao {
  display: inline-block;
}
.list_product .list_product_box .left .le_menu .le_menu_item > a i.icon-jianhao {
  display: none;
}
.list_product .list_product_box .left .le_menu .le_menu_item.active > a,
.list_product .list_product_box .left .le_menu .le_menu_item:hover > a {
  color: #004098;
}
.list_product .list_product_box .left .le_menu .le_menu_item.active > a i.icon-jiahao,
.list_product .list_product_box .left .le_menu .le_menu_item:hover > a i.icon-jiahao {
  display: none;
}
.list_product .list_product_box .left .le_menu .le_menu_item.active > a i.icon-jianhao,
.list_product .list_product_box .left .le_menu .le_menu_item:hover > a i.icon-jianhao {
  display: inline-block;
}
.list_product .list_product_box .left .le_menu .le_menu_item.active .le_two,
.list_product .list_product_box .left .le_menu .le_menu_item:hover .le_two {
  display: block;
}
.list_product .list_product_box .left .le_menu .le_menu_item .le_two {
  display: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_product .list_product_box .left .le_menu .le_menu_item .le_two .le_two_item > a {
  color: #7C7C7C;
  font-size: 1rem;
  line-height: 3.75rem;
  border-bottom: 1px solid rgba(0, 64, 152, 0.15);
}
.list_product .list_product_box .left .le_menu .le_menu_item .le_two .le_two_item:hover > a,
.list_product .list_product_box .left .le_menu .le_menu_item .le_two .le_two_item.active > a {
  color: #004098;
}
.list_product .list_product_box .right {
  flex: 1;
  padding-left: 4.375rem;
  padding-bottom: 5.9375rem;
}
.list_product .list_product_box .right .grid_box .grid_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 64, 152, 0.15);
  padding: 3.0625rem 1rem 2.8125rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.list_product .list_product_box .right .grid_box .grid_item .over {
  width: 33%;
  border: 1px solid rgba(0, 64, 152, 0.15);
  background: #FFF;
  height: 18.75rem;
  text-align: center;
}
.list_product .list_product_box .right .grid_box .grid_item .over img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.list_product .list_product_box .right .grid_box .grid_item .text {
  padding-left: 3.125rem;
  padding-right: 2.125rem;
  flex: 1;
}
.list_product .list_product_box .right .grid_box .grid_item .text h3 {
  color: #3B3B3B;
  font-size: 1.5625rem;
  font-weight: 700;
}
.list_product .list_product_box .right .grid_box .grid_item .text .desc {
  margin-top: 1rem;
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.list_product .list_product_box .right .grid_box .grid_item .text .more {
  color: #F6AD3C;
  font-size: 1rem;
  font-weight: 400;
  vertical-align: middle;
}
.list_product .list_product_box .right .grid_box .grid_item .text .more i {
  font-size: 0.625rem;
}
.list_product .list_product_box .right .grid_box .grid_item:hover {
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 64, 152, 0.15);
}
.list_product .list_product_box .right .grid_box .grid_item:hover .over {
  border: none;
}
.show_product {
  margin-top: 6.25rem;
  position: relative;
}
.show_product .list_product_box {
  display: flex;
  justify-content: space-between;
}
.show_product .list_product_box .left {
  position: sticky;
  top: 0;
  height: 100%;
  padding-top: 6.25rem;
  padding-left: 6.25rem;
  width: 21.875rem;
  background: linear-gradient(180deg, #EDF6FF 0%, #FFF 100%);
}
.show_product .list_product_box .left .le_menu .le_menu_item > a {
  color: #3C3C3C;
  font-size: 1.25rem;
  text-transform: capitalize;
  padding: 1.125rem 1.5625rem 1.125rem 0;
  border-bottom: 1px solid rgba(0, 64, 152, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.show_product .list_product_box .left .le_menu .le_menu_item > a i {
  font-size: 1.5rem;
  color: #333333;
}
.show_product .list_product_box .left .le_menu .le_menu_item > a i.icon-jiahao {
  display: inline-block;
}
.show_product .list_product_box .left .le_menu .le_menu_item > a i.icon-jianhao {
  display: none;
}
.show_product .list_product_box .left .le_menu .le_menu_item.active > a,
.show_product .list_product_box .left .le_menu .le_menu_item:hover > a {
  color: #004098;
}
.show_product .list_product_box .left .le_menu .le_menu_item.active > a i.icon-jiahao,
.show_product .list_product_box .left .le_menu .le_menu_item:hover > a i.icon-jiahao {
  display: none;
}
.show_product .list_product_box .left .le_menu .le_menu_item.active > a i.icon-jianhao,
.show_product .list_product_box .left .le_menu .le_menu_item:hover > a i.icon-jianhao {
  display: inline-block;
}
.show_product .list_product_box .left .le_menu .le_menu_item.active .le_two,
.show_product .list_product_box .left .le_menu .le_menu_item:hover .le_two {
  display: block;
}
.show_product .list_product_box .left .le_menu .le_menu_item .le_two {
  display: none;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.show_product .list_product_box .left .le_menu .le_menu_item .le_two .le_two_item > a {
  color: #7C7C7C;
  font-size: 1rem;
  line-height: 3.75rem;
  border-bottom: 1px solid rgba(0, 64, 152, 0.15);
}
.show_product .list_product_box .left .le_menu .le_menu_item .le_two .le_two_item:hover > a,
.show_product .list_product_box .left .le_menu .le_menu_item .le_two .le_two_item.active > a {
  color: #004098;
}
.show_product .list_product_box .right {
  width: calc(100% - 21.875rem);
  padding-left: 3.75rem;
  padding-bottom: 5.9375rem;
}
.show_product .list_product_box .right .ajhhsd {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: unset;
}
.show_product .list_product_box .right .ajhhsd a {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  text-shadow: unset;
}
.show_product .list_product_box .right .show_pro_one {
  display: flex;
  justify-content: space-between;
}
.show_product .list_product_box .right .show_pro_one .le {
  width: 55%;
}
.show_product .list_product_box .right .show_pro_one .le .swiper_box {
  border: 1px solid rgba(0, 64, 152, 0.15);
  background: #FFF;
  padding: 3.125rem 0;
  position: relative;
}
.show_product .list_product_box .right .show_pro_one .le .swiper_box .over {
  height: 28.125rem;
  text-align: center;
}
.show_product .list_product_box .right .show_pro_one .le .swiper_box .over img {
  width: auto;
  height: 100%;
}
.show_product .list_product_box .right .show_pro_one .le .swiper-button-next,
.show_product .list_product_box .right .show_pro_one .le .swiper-button-prev {
  border: none;
}
.show_product .list_product_box .right .show_pro_one .le .swiper-button-next i,
.show_product .list_product_box .right .show_pro_one .le .swiper-button-prev i {
  font-size: 1.25rem;
}
.show_product .list_product_box .right .show_pro_one .le .swiper-button-prev,
.show_product .list_product_box .right .show_pro_one .le .swiper-container-rtl .swiper-button-next {
  left: 1.875rem;
}
.show_product .list_product_box .right .show_pro_one .le .swiper-button-next,
.show_product .list_product_box .right .show_pro_one .le .swiper-container-rtl .swiper-button-prev {
  right: 1.875rem;
}
.show_product .list_product_box .right .show_pro_one .le .swiper_proimg {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.show_product .list_product_box .right .show_pro_one .ri {
  width: 45%;
  padding-left: 3.625rem;
}
.show_product .list_product_box .right .show_pro_one .ri .title {
  color: #3B3B3B;
  font-size: 2.1875rem;
  font-weight: 700;
}
.show_product .list_product_box .right .show_pro_one .ri .desc {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_product .list_product_box .right .show_pro_one .ri .tel p {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_product .list_product_box .right .show_pro_one .ri .tel p.p1 {
  color: #F6AD3C;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.875rem;
  text-transform: capitalize;
}
.show_product .list_product_box .right .show_pro_two {
  margin-top: 7.625rem;
}
.show_product .list_product_box .right .show_pro_two .title {
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.875rem;
  padding: 1.875rem;
  background: #004098;
  text-align: center;
}
.show_product .list_product_box .right .show_pro_two .content {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 3.125rem;
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.show_product .list_product_box .right .show_pro_two .content h3 {
  color: #282828;
  font-size: 1.25rem;
  font-weight: 550;
  line-height: 1.875rem;
  margin-top: 1.25rem;
}
.show_product .list_product_box .right .show_pro_two .content p {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.show_product .list_product_box .right .show_pro_two .bottom {
  display: flex;
  justify-content: space-between;
}
.show_product .list_product_box .right .show_pro_two .bottom .shangxia a {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
  letter-spacing: 0.05rem;
}
.show_product .list_product_box .right .show_pro_two .bottom .shangxia p {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
  letter-spacing: 0.05rem;
}
.show_product .list_product_box .right .show_pro_two .bottom .shangxia p span {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
  letter-spacing: 0.05rem;
}
.all_more {
  width: 11.5625rem;
  height: 3.4375rem;
  border-radius: 3.4375rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-size: 1.125rem;
  background: #F6AD3C;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all_more i {
  font-size: 1.375rem;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .all_more {
    padding: 0.7rem 1.65rem;
  }
}
.all_more > * {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.all_more::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #004098;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 0.625rem;
}
.all_more:hover {
  cursor: pointer;
  color: #fff;
  border: transparent;
}
.all_more:hover p {
  color: #fff;
}
.all_more:hover::after {
  transform-origin: center left;
  transform: scaleX(1);
}
.all_moreb {
  width: 11.5625rem;
  height: 3.4375rem;
  border-radius: 3.4375rem;
  color: #5D5D5D;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-size: 1.125rem;
  border: 1px solid #CECECE;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.all_moreb i {
  font-size: 1.375rem;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .all_moreb {
    padding: 0.7rem 1.65rem;
  }
}
.all_moreb > * {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}
.all_moreb::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #004098;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 0.625rem;
}
.all_moreb:hover {
  cursor: pointer;
  color: #fff;
  border: transparent;
}
.all_moreb:hover p {
  color: #fff;
}
.all_moreb:hover::after {
  transform-origin: center left;
  transform: scaleX(1);
}
.show_product_xgcase {
  padding-top: 6.9375rem;
  padding-bottom: 7.5rem;
  background: #F5FAFF;
}
.show_product_xgcase .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.show_product_xgcase .content .grid_box .grid_item .txt {
  padding-top: 1.8125rem;
}
.show_product_xgcase .content .grid_box .grid_item .txt h3 {
  color: #3B3B3B;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.show_product_xgcase .content .grid_box .grid_item .txt .time {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.show_news {
  margin-top: 6.25rem;
  padding-top: 6.875rem;
}
.show_news .title_box .title {
  color: #3B3B3B;
  text-align: center;
  font-size: 2.1875rem;
  font-weight: 700;
}
.show_news .title_box .sub_box {
  display: flex;
  justify-content: center;
}
.show_news .title_box .sub_box .time {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.show_news .title_box .sub_box .ri {
  padding-left: 1.875rem;
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  display: flex;
}
.show_news .title_box .sub_box .ri .social-share {
  display: flex;
  align-items: center;
}
.show_news .title_box .sub_box .ri .social-share .social-share-icon {
  border: none;
  color: #7C7C7C;
}
.show_news .content {
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.show_news .bottom {
  display: flex;
  justify-content: space-between;
}
.show_news .bottom .shangxia a {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
  letter-spacing: 0.05rem;
}
.show_news .bottom .shangxia p {
  color: #7C7C7C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
  letter-spacing: 0.05rem;
}
.show_news .bottom .shangxia p span {
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1875rem;
  letter-spacing: 0.05rem;
}
.index_one {
  padding-top: 6.875rem;
  padding-bottom: 7.5rem;
  background-size: cover;
}
.index_one .desc {
  color: #3B3B3B;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
}
.index_one .content ul li {
  color: #3B3B3B;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 5.625rem;
  transition: all 0.4s;
  -webkit-transform: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.index_one .content ul li.active {
  cursor: pointer;
  font-size: 3.4375rem;
}
.index_two {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem;
}
.index_two .desc {
  color: #3B3B3B;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.index_two .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.index_two .content .grid_box .grid_item .text {
  padding-top: 1.625rem;
}
.index_two .content .grid_box .grid_item .text h3 {
  color: #424242;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}
.index_two .content .grid_box .grid_item .text p {
  padding: 0.625rem 1.25rem;
  color: #5D5D5D;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.index_two .content2 {
  border-radius: 1.25rem;
  background: #004098;
  box-shadow: 0 0 1.25rem 0 rgba(0, 64, 152, 0.3);
  margin-top: 7.75rem;
  padding: 5rem 0 5.625rem;
}
.index_two .content2 .title {
  color: #FFF;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
}
.index_two .content2 .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.index_two .content2 .grid_box .grid_item {
  position: relative;
}
.index_two .content2 .grid_box .grid_item:not(:nth-last-child(1)):after {
  content: '';
  position: absolute;
  width: 1px;
  height: 4.8125rem;
  background: rgba(255, 255, 255, 0.5);
  right: 0;
  bottom: 0;
}
.index_two .content2 .grid_box .grid_item .icon {
  width: 2.5rem;
  margin: 0 auto;
}
.index_two .content2 .grid_box .grid_item .text {
  text-align: center;
}
.index_two .content2 .grid_box .grid_item .text p {
  margin-top: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}
.index_two .content2 .grid_box .grid_item .text h3 {
  margin-top: 1.1875rem;
  color: #FFF;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
.index_three {
  padding-top: 6.75rem;
  padding-bottom: 16.25rem;
  background: #F5FAFF;
  position: relative;
}
.index_three::before {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: #EDF6FF;
  position: absolute;
  right: 0;
  top: 0;
}
.index_three::after {
  content: '';
  display: block;
  width: 18.75rem;
  height: 37.5rem;
  background-image: url(../img/yuan.png);
  background-size: 100% 100%;
  position: absolute;
  top: 10.125rem;
  right: 18%;
}
.index_three .content {
  display: flex;
  justify-content: space-between;
}
.index_three .content .le_swiper {
  width: 80%;
}
.index_three .content .le_swiper .swiper_indexpro {
  position: relative;
  overflow: hidden;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro {
  display: flex;
  align-items: center;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left {
  flex: 1;
  padding-left: var(--container);
  padding-right: 1.875rem;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left .en {
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(0, 64, 152, 0.1);
  font-family: Montserrat;
  font-size: 8.125rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 800;
  white-space: nowrap;
  width: 50vw;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left .en .ii {
  display: inline-block;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left .en .i1 {
  -webkit-animation: loop 80s -40s linear infinite;
  -moz-animation: loop 80s -40s linear infinite;
  -o-animation: loop 80s -40s linear infinite;
  animation: loop 80s -40s linear infinite;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left .en .i2 {
  -webkit-animation: loop2 80s linear infinite;
  -moz-animation: loop2 80s linear infinite;
  -o-animation: loop2 80s linear infinite;
  animation: loop2 80s linear infinite;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left h3 {
  color: #3B3B3B;
  font-size: 1.5rem;
  font-weight: 500;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left p {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875rem;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .left a.more {
  margin-top: 1.5625rem;
  color: #F6AD3C;
  font-size: 1rem;
  font-weight: 400;
}
.index_three .content .le_swiper .swiper_indexpro .index_pro .right {
  width: 50%;
  position: relative;
  z-index: 2;
}
.index_three .content .ri_swiper {
  width: 25%;
}
.index_three .content .ri_swiper .protab_box {
  position: relative;
}
.index_three .content .ri_swiper .protab_box .protab_item {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 8;
}
.index_three .content .ri_swiper .protab_box .protab_item:hover,
.index_three .content .ri_swiper .protab_box .protab_item.active {
  cursor: pointer;
}
.index_three .content .ri_swiper .protab_box .protab_item:hover .icon::before,
.index_three .content .ri_swiper .protab_box .protab_item.active .icon::before {
  border-color: #F6AD3C;
}
.index_three .content .ri_swiper .protab_box .protab_item:hover .icon::after,
.index_three .content .ri_swiper .protab_box .protab_item.active .icon::after {
  background-color: #F6AD3C;
}
.index_three .content .ri_swiper .protab_box .protab_item:hover .icon img,
.index_three .content .ri_swiper .protab_box .protab_item.active .icon img {
  position: relative;
  z-index: 9;
  filter: brightness(0) invert(1);
}
.index_three .content .ri_swiper .protab_box .protab_item .icon {
  width: 5.4375rem;
  height: 5.4375rem;
  border-radius: 5.4375rem;
  background-color: #DDE7F5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.index_three .content .ri_swiper .protab_box .protab_item .icon::before {
  content: '';
  display: block;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 4.375rem;
  border: 1px solid rgba(0, 64, 152, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_three .content .ri_swiper .protab_box .protab_item .icon::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  border: 1px solid rgba(0, 64, 152, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_three .content .ri_swiper .protab_box .protab_item .icon img {
  width: 30%;
}
.index_three .content .ri_swiper .protab_box .protab_item .text {
  color: #3C3C3C;
  text-align: center;
  font-size: 1rem;
  padding-left: 0.625rem;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(1) {
  width: 12.5rem;
  top: -7.25rem;
  right: 18rem;
  flex-direction: column;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(1) .text {
  order: 1;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(1) .icon {
  order: 2;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(2) {
  top: -3.125rem;
  right: 3rem;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(3) {
  top: 3.5rem;
  right: -2.15rem;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(4) {
  top: 12.375rem;
  right: -3.375rem;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(5) {
  top: 21.625rem;
  right: -1.375rem;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(6) {
  top: 28.875rem;
  right: 5.75rem;
}
.index_three .content .ri_swiper .protab_box .protab_item:nth-child(7) {
  width: 12.5rem;
  top: 32rem;
  right: 17.375rem;
  flex-direction: column;
}
.index_four {
  padding-top: 6.875rem;
  padding-bottom: 7.5rem;
  position: relative;
}
.index_four .i {
  width: 60%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  mask: linear-gradient(180deg, transparent, #000 0%, #000 70%, transparent);
}
.index_four .desc {
  margin-top: 0.875rem;
  color: #3B3B3B;
  text-align: center;
  font-size: 1.125rem;
}
.index_four .content {
  margin-top: 11.25rem;
}
.index_four .content .swiper_indexcoop {
  position: relative;
  overflow: hidden;
  padding-bottom: 4.375rem;
  margin: -0.9375rem;
}
.index_four .content .swiper_indexcoop .swiper-slide {
  padding: 0.9375rem;
}
.index_four .content .swiper_indexcoop .swiper-slide .coop_box {
  border: 1px solid #CECECE;
  background: #FFF;
}
.index_four .content .swiper_indexcoop .swiper-pagination {
  justify-content: center;
}
.index_four .content .swiper_indexcoop .swiper-pagination-bullet {
  border: none;
  background: #D9D9D9;
}
.index_four .content .swiper_indexcoop .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F6AD3C;
}
.index_seven {
  background: #F5FAFF;
  padding-top: 6.9375rem;
}
.index_seven .content {
  position: relative;
  z-index: 2;
}
.index_seven .content .index_news_box {
  display: flex;
  justify-content: space-between;
}
.index_seven .content .index_news_box .left {
  width: 50%;
  padding-right: 2.25rem;
}
.index_seven .content .index_news_box .left .left_news .over {
  padding: 1rem;
  height: 28.125rem;
  text-align: center;
  background-color: #fff;
}
.index_seven .content .index_news_box .left .left_news .over img {
  width: auto;
  height: 100%;
}
.index_seven .content .index_news_box .left .left_news .text {
  padding-top: 1.875rem;
}
.index_seven .content .index_news_box .left .left_news .text p {
  color: #3B3B3B;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.index_seven .content .index_news_box .left .left_news .text p.p1 {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.index_seven .content .index_news_box .right {
  width: 50%;
  overflow: hidden;
}
.index_seven .content .index_news_box .right .swiper_index_news {
  position: relative;
  overflow: unset;
  padding-bottom: 6.25rem;
  margin: 0 -1rem;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-slide {
  padding: 0 1rem;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-button-next,
.index_seven .content .index_news_box .right .swiper_index_news .swiper-button-prev {
  background: #F6AD3C;
  border: none;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-button-next i,
.index_seven .content .index_news_box .right .swiper_index_news .swiper-button-prev i {
  color: #fff;
  font-size: 1.25rem;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-button-prev,
.index_seven .content .index_news_box .right .swiper_index_news .swiper-container-rtl .swiper-button-next {
  left: 80%;
  top: unset;
  margin-top: 0;
  bottom: 0;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-button-next,
.index_seven .content .index_news_box .right .swiper_index_news .swiper-container-rtl .swiper-button-prev {
  right: 3%;
  top: unset;
  margin-top: 0;
  bottom: 0;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-scrollbar {
  width: 75%;
  height: 0.0625rem;
  background-color: rgba(0, 0, 0, 0.2);
  bottom: 1.5625rem;
}
.index_seven .content .index_news_box .right .swiper_index_news .swiper-scrollbar-drag {
  background-color: #F6AD3C;
  height: 0.1875rem;
}
.index_seven .content .index_news_box .right .swiper_index_news .right_news .over {
  height: 15.625rem;
  background-color: #fff;
}
.index_seven .content .index_news_box .right .swiper_index_news .right_news .over img {
  object-fit: contain;
  width: auto;
  height: 100%;
}
.index_seven .content .index_news_box .right .swiper_index_news .right_news .text {
  padding: 1.25rem 0 0;
}
.index_seven .content .index_news_box .right .swiper_index_news .right_news .text p {
  color: #3B3B3B;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
.index_seven .content .index_news_box .right .swiper_index_news .right_news .text p.p1 {
  color: #5D5D5D;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1875rem;
}
